home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CPPWIN10.ARJ / CDLGABT.HPP < prev    next >
C/C++ Source or Header  |  1991-01-11  |  397b  |  23 lines

  1. /***
  2.     Header File.
  3.     Class:        CDlgAbout
  4. Revisions:
  5. 10/24/90 KM Initial coding.
  6. ***/
  7. #ifndef CDlgAbout_INC
  8. #define CDlgAbout_INC
  9.  
  10. #include "cdlg.hpp"
  11.  
  12. class CDlgAbout : public CDlg {
  13.     public:
  14.         void DoAboutBox(HANDLE hInst, HWND hParent);
  15.         BOOL DoInitDialog(WORD nFocusID, LONG lParam);
  16.         BOOL DoCommand(WORD ControlID, LONG lParam);
  17.  
  18.     protected:
  19.  
  20.     private:
  21. };
  22. #endif
  23.